home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Personal Computer World 2006 May
/
PCWMAY06.iso
/
Software
/
Freeware
/
First Page 2006 3.00
/
fp2006-final-3.00-setup.exe
/
{app}
/
Iscripts
/
Form & Validation
/
form2popup.izs
< prev
next >
Wrap
Text File
|
2005-08-29
|
1KB
|
40 lines
<!NOWIZARD>
<!TITLE>Form2PopUp script
<!/TITLE>
<!DESCRIPTION>This useful script allows you to target a form's submission to a new window, so the original page does not change once the "submit" button is pressed. Instead, a customizable pop up window is launched containing the destination page.
<!/DESCRIPTION>
<!CATEGORY>form and form validation<!/CATEGORY>
<!SCRIPT>
<!-- START OF SCRIPT -->
<script type="text/javascript">
function createTarget(t){
window.open("", t, "width=600,height=550");
return true;
}
</script>
<form name="sampleform" method="POST" action="/cgi-bin/formsubmit.pl" onsubmit="return createTarget(this.target)" target="formtarget">
<!-- END OF SCRIPT -->
<!/SCRIPT>
<!PREVIEW>
<!-- START OF SCRIPT -->
<script type="text/javascript">
function createTarget(t){
window.open("", t, "width=600,height=550");
return true;
}
</script>
<form name="sampleform" method="POST" action="/cgi-bin/formsubmit.pl" onsubmit="return createTarget(this.target)" target="formtarget">
<!-- END OF SCRIPT -->
<!/PREVIEW>
<!RELATED>NONE<!/RELATED>